@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --clr-pri: #e4e9f7;
    --clr-sec: #fdfdfd;
    --clr-acc: rgba(76, 68, 182, 0.808);
    --clr-light: #fff;
    --clr-dark: #000;
    --clr-warning: #f00;
    --clr-success: #009900;
    --clr-info: #00f;
    --border: #e6e6f2;

    --line1: 1px solid #e6e6e6;
    --line2: 1px solid #ccc;
}
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body {
    background: var(--clr-pri);
}
.container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90vh;
}
.box {
    background: var(--clr-sec);
    display: flex;
    flex-direction: column;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 0 128px 0 rgba(0, 0, 0, 0.1),
                0 32px 64px -48px rgba(0, 0, 0, 0.5);
}
.form-box {
    width: 450px;
    margin: 0px 10px;
}
.form-box header {
    font-size: 1.5rem;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: var(--line1);
    margin-bottom: 10px;
}
.form-box form .field {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}
.form-box form .input input {
    height: 40px;
    width: 100%;
    font-size: 1rem;
    padding: 0 10px;
    border-radius: 5px;
    border: var(--line2);
    outline: none;
}

.form-box form .input input[type="checkbox"] {
    width: 15px;
    height: 15px;
    margin-right: 5px;
}

.submit {
    width: 100%;
}
.link {
    margin-bottom: 15px;
}
.message {
    text-align: center;
    background-color: var(--clr-sec);
    padding: 15px 0px;
    border: var(--line2);
    border-radius: 5px;
    margin-bottom: 10px;
}
.success {
    color: var(--clr-success) !important;
}
.warning {
    color: var(--clr-warning) !important;
}

/********* Home ********/



.btn {
    height: 35px;
    background: var(--clr-acc);
    border: 0;
    border-radius: 5px;
    color: var(--clr-light);
    font-size: 1rem;
    cursor: pointer;
    transition: all .3s;
    margin-top: 10px;
    padding: 0px 10px;
    text-decoration: none;

}
.btn.ghost {
  background: transparent;
  color: var(--clr-acc);
  border: var(--line2);
}
.btn:hover {
    opacity: 0.82;
    filter: hue-rotate(30deg);
}
.link-btn {
    color: var(--clr-acc);
    background-color: var(--clr-pri);
    margin: 0;
    padding: 10px;
    min-height: max-content;
    width: 100%;
}
.link-btn > img {
    width: 50px;
}



.header {
    background: var(--clr-light);
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    line-height: 60px;
    z-index: 100;
}
.logo a {
    font-size: 1.75rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--clr-dark);
}
.logo a:hover {
    color: var(--clr-acc);
    filter: hue-rotate(30deg);
}
.right-links a {
    padding: 0 10px;
}
.right-links a:not(:has(button)):hover {
    cursor: pointer;
    filter: hue-rotate(30deg);
}
main {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
}
.main-box {
    display: flex;
    flex-direction: column;
    width: 70%;
}
.main-box .top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.main-box .bottom {
    width: 100%;
    margin-top: 20px;
}


.box h3 {
    margin-bottom: 10px;
}
.flex-row-responsive {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;

}

.apps a {
    width: 300px;
    flex: auto;
}



@media only screen and (max-width: 840px) {
    .main-box .top {
        flex-direction: column;
        justify-content: space-between;
    }
    .main-box .top .box {
        margin: 10px 0px;
    }
}