* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
    background-color: rgb(242, 242, 242);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0px;
}

h1 {
    font-family: Montserrat, sans-serif;
    color: rgb(255, 255, 255);
    font-size: 60px;
    font-weight: 600;
}

h2 {
    color: rgb(51, 51, 51);
    font-size: 50px;
    font-weight: 600;
}

h3, h4, h5, h6 {
    font-family: Montserrat, sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: rgb(51, 51, 51);
}

p {
    margin: 0px;
    font-size: 18px;
    font-family: Montserrat, sans-serif;
}

.login-wrapper label{
    font-family: Montserrat, sans-serif;
}


.login-logo img {
    display: block;
    margin: 0px auto;
}

.login-wrapper .login-container {
    border-radius: 10px;
    padding: 20px;
    max-width: 400px;
    width: 500px;
    text-align: center;
    margin: 0px auto;
}

.login-wrapper .col-bg-img {
    background-image: url("../assets/Background.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.login-wrapper .login-desc h3 {
    font-family: Montserrat, sans-serif;
font-size: 45px;
font-weight: 600;
}

.login-wrapper .login-form {
    display: flex;
    flex-direction: column;
}

.login-wrapper .login-form h1 {
    margin-bottom: 10px;
    color: rgb(51, 51, 51);
}

.login-wrapper .login-form p {
    margin-bottom: 20px;
    color: rgb(119, 119, 119);
}

.login-wrapper .input-group {
    margin-bottom: 14px;
}

.login-wrapper .input-group input {
    font-family: Montserrat, sans-serif;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgb(221, 221, 221);
    width: 100%;
    font-size: 16px;
    transition: border-color 0.3s ease 0s;
    background-color: #e9e8e8b8;
    border-top-left-radius: 8px !important;
    border-bottom-left-radius: 8px !important;
}

.login-wrapper .input-group input:focus {
    border-color: rgb(0, 123, 255);
    outline: none;
}

.login-wrapper button {
    padding: 15px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(13,173,211,1) 40%, rgba(28,191,169,1) 90%);
    color: rgb(255, 255, 255);
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease 0s;
    font-family: Montserrat, sans-serif;
}

.login-wrapper button:hover {
    background: linear-gradient(0deg, rgba(13,173,211,1) 40%, rgba(28,191,169,1) 90%);
}

.bottom-text {
    display: flex;
    flex-direction: row;
    margin-top: 20px;
    color: rgb(119, 119, 119);
    gap: 10px;
    justify-content: space-between;
}
.check {
    margin-top: -10px;
    margin-bottom: 20px
}
.bottom-text p {
    margin-bottom: 10px;
}

.bottom-text a {
    color: rgb(0, 123, 255);
    text-decoration: none;
    transition: color 0.3s ease 0s;
}

.bottom-text a:hover {
    color: rgb(0, 86, 179);
}

@media screen and (max-width: 600px) {
    .login-container {
        width: 100%;
        border-radius: 0px;
    }
}
