/*---------------about----------------*/

#about-section {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;

    p {
        width: 100%;
        color: #064c6d;
        font-size: large;
        line-height: 1.5;
    }

    div {
        margin-top: 20px;
    }
}

.title {
    margin-top: 2em;
    color: #064c6d;
    font-size: min(15vw, 120px);
    border-bottom: 3px solid #064c6d;
}

#about-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;

    h1 {
        margin-top: 2em;
        color: #064c6d;
    }
}

.about-card {

    border-top: 2px solid #064c6d;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);

}

@media (max-width: 750px) {
    #about-cards{
        display: grid;
        grid-template-columns: 1fr;
    }
}

.about-card i {
    color: #064c6d;
    margin-bottom: 10px;
}

.about-card h3 {
    margin-top: 10px;
    margin-bottom: 10px;
    color: #064c6d;
    font-size: 1.2rem;
}

.about-card p.small {
    font-size: 1rem !important;
    color: #333;
}

#footer-section {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    background-color: #064c6d;
}

footer {
    background-color: #064c6d;
    height: 200px;
    margin-top: 2em;
}

#login-section {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;

    p {
        width: 100%;
        color: #064c6d;
        font-size: large;
        line-height: 1.5;
    }

    div {
        margin-top: 20px;
    }
}

#login-card {
    display: grid;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);

    div{
            border-radius: 10px;
    }

}

#login-card i {
    color: #064c6d;
    margin-bottom: 10px;
    padding-bottom: 15px;
    width: 100%;
}

#login-card h3 {
    margin-top: 10px;
    margin-bottom: 10px;
    color: #064c6d;
    font-size: 1.2rem;
}

#login-card p.small {
    font-size: 1rem !important;
    color: #333;
}
#login-card input{
    border-radius: 10px;
    border: 2px solid #064c6d;
    padding: 10px;
    margin-top:10px;
    margin-bottom: 10px;
    font-size: medium;
}
#login-card button{
    padding: 15px;
    text-decoration: none;
    border: none;
    background-color: #064c6d;
    color: white;
    width: 100%;
    font-family: sans-serif;
    font-size: large;
    border-radius: 10px;
}

#login-card button:hover {
    background: #0c5d83 !important;
    cursor: pointer;
}
#login-card label{
    color:#064c6d;
}
#login-cards{
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
}
@media (max-width: 750px) {
    #login-cards{
        display: grid;
        grid-template-columns: 1fr;
    }
    #example-login{

        padding: 20px;

    }
}
#example-login{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
    p{
        text-align: left;
    }
}
#example-users{
    display: grid;
    grid-template-columns: 1fr 4fr;
}