@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;600&display=swap');
body {
    font-family: 'Raleway', sans-serif;
    margin: 0;
    padding: 0;
    color: black; /* Set text color for the entire page */
}

.login-1 {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.login-form {
    margin: 120px 80px;
    overflow: hidden;
}

.img-box {
    max-height: 700px;
    display: flex;
    align-items: center;
}

.login-form .login-box {
    font-size: 1rem;
    padding: 15px 15px 15px 30px;
}

.login-form .login-box .login-title {
    font-size: 40px;
    font-weight: 600;
    color: #45B4D0;
}

.login-form .login-box .login-p {
    font-weight: 300;
    color: #151865;
    font-size: 20px;
}

.login-form .back-img {
    max-width: 100%;
    height: auto;
}

.login-form .check-field {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.login-form a {
    color: black;
    text-decoration: none;
}

.login-form .form-group, .login-form .input-group {
    padding: 15px 20px 5px 0px;
}

.login-form .form-group label {
    margin-bottom: .5rem;
    font-size: 1rem;
}

.login-form .form-group .form-control {
    padding: .810rem .96rem;
    border-color: #45B4D0;
    border-radius:0;
    font-weight: 300;
    color: #151865;
    font-size: 20px;
    margin-bottom: 20px;
}

.login-form .btn-primary {
    background-color: #45B4D0;
    border-color: #45B4D0;
    padding: 0.8rem 2.6rem;
    font-weight: 500;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
    margin: 10px 0px 20px;
    border-radius: 5px;
}

.login-form .btn-primary:hover {
    background-color: #006adb;
    border-color: #006adb;
}

.login-form .btn-link {
    color: #45B4D0;
}

.container-fluid.login-1 {
    background: linear-gradient(-45deg, #45B4D0, darkcyan, black, #23d5ab);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
}

.center-container {
    background-color: white;
    max-width: 2000px; /* Adjust the maximum width of the container as needed */
    max-height: 80%;
    margin: 50px auto; /* Adjust the margin for centering on the page */
    padding: 20px;
    border-radius: 80px; /* Add border-radius for rounded corners if desired */
}

.logo-container {
    text-align: center;
}

.logo-container img {
    max-width: 100%;
    max-height: 100px;
    display: block;
    margin: 0 auto;
    padding: 10px;
}
@media screen and (max-width: 767px) {
    .login-1 {
        padding: 0px;
        overflow: visible;
        height: 100%;
    }

    .login-form {
        margin: 10px;
        overflow: visible;
    }
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}