*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2em 1.8em;
    box-shadow: 0 1px 5px rgba(1, 1, 1, 15%);
}

.header-img{
    width: 4em;
    padding-right: .8em;
}

.main h1 {
    /* margin: 0 0 0em 0; */
    font-size: 1.8em;
    color: #212121;
    font-weight: 700;
}

.card {
    margin-top: 0px;
    text-align: center;
    width: 510px;
    border-radius: 10px;
    padding: 32px 80px;
    /* background-color: #f; */
}

.title {
    color: #5d687c;
    font-size: 1em;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.text {
    font-size: 1em;
    font-weight: 500;
    color: #999999;
}

.card h4 a {
    color: #999999;
}

.join-btn button {
    margin-top: 20px;
    border: 1px solid #00754a;
    border-radius: 40px;
    padding: 7px 18px;
    font-size: 1em;
    background-color: #f1f8f5;
    color: #00754a;
    font-weight: 700;
    transition: 0.7s ease;
}

.join-btn button:hover {
    background-color: #e4ece9;
}

.join-btn button:active {
    transform: translateY(4px);
}


.main {
    margin: 2em 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
}

.signin-box {
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(1, 1, 1, 15%);
    padding: 64px;
}

.star{
    color: #00754a;
}

.info {
    margin-top: 40px;
}

.info h3 {
    font-weight: 600;
}

.input-container {
    width: 450px;
    position: relative; 
    margin-top: 20px ;
}

.label {
    position: absolute;
    left: 10px;
    top: 14px;
    transition: all 0.2s;
    padding: 0 2px;
    z-index: 1;
    color: #252525;
    font-size: 18px;
    font-weight: 500;
}

.text-input {
    padding: 0.8rem;
    width: 100%;
    height: 100%;
    border: 1px solid #999999;
    background: #fff;
    border-radius: 10px;
    outline: none;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s;
    color: #212121;
}

.label::before {
    content: "";
    height: 5px;
    background: #fff;
    position: absolute;
    left: 0;
    top: 10px;
    width: 100%;
    z-index: -1;
}

.text-input:focus {
    border: 2px solid #00754a;
}

.text-input:focus + .label, .filled {
    top: -10px;
    color: #00754a;
    font-size: 14px;
}

.text-input::placeholder {
    font-size: 20px;
    opacity: 0;
    transition: all 0.3s;
}

.text-input:focus::placeholder {
    opacity: 0;
}

.label span {
    color: #00754a;
}

.terms-title {
    margin-top: 50px;
}

.terms-title h4 {
    margin-bottom: 15px;
    color: #3d4a60;
}

.terms {
    
    display: flex;
    align-items: start;
}

.terms p i {
    font-size: .7rem;
}

.checkbox {
    /* display: flex;
    align-items: center; */
    cursor: pointer;
    /* margin-top: 40px; */
    font-weight: 450;
    font-size: 17px;
    margin-bottom: 20px;
}

.terms p a {
    color: #00754a;
    font-weight: 500;
    margin-left: 5px;
    text-decoration: underline;
    text-align: justify;
}

/* .terms p a i {
    font-weight: 400;
} */

.checkbox-input {
    display: none;
}

.checkbox-box {
    width: 1.5em;
    height: 1.5em;
    border: 1px solid #00754a;
    border-radius: 5px;
    margin-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    transition: background-color 0.15s, border-color 0.15s;
}

.checkbox-box::after {
    content: '\2714';
    color: #fff;
    transform: scale(0);
    transition: transform 0.15s;
}

.checkbox-input:checked + .checkbox-box {
    background-color: #00754a;

}

.checkbox-input:checked + .checkbox-box::after {
    transform: scale(1);
}

.forget {
    display: flex;
    flex-direction: column;
}

.forget a {
    color: #00754a;
    font-weight: 800;
    margin-bottom: 10px;
}

.forget a:hover {
    text-decoration: none;
}

.signin-btn  button {
    display: block;
    margin: 70px 0 0 auto;
    padding: .9em 1.2em;
    border-radius: 40px;
    background-color: #00754a;
    border: none;
    color: #fff;
    font-size: 1.2em;
    font-weight: 700;
    box-shadow: 0px 15px 25px rgba(1, 1, 1, 15%);
    transition: 0.7s ease;
}

.signin-btn  button:hover {
    background-color: #005e3b;
}

.signin-btn  button:active {
    transform: translateY(4px);
}

.signin-btn {
    text-decoration: none;
}

footer {
    margin: 30px 0;
    border-top: 1px rgb(226, 226, 226) solid;
    padding: 30px;
    display: flex;
    justify-content: space-evenly;
}

.btn-footer a{
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding-bottom: 50px;

}