
body {
    background-color: #121212;
    color: ;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.login-container {
    max-width: 400px;
    background-color: #1c1c1c;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}
.form-control {
    background-color: #2a2a2a;
    border: none;
    color: #fff;
}
.form-control::placeholder {
    color: #aaa;
}
.btn-warning {
    width: 100%;
    font-weight: bold;
}
.social-login button {
    width: 50%;
    text-align: left;
    border-radius: 5px;
    padding: 8px;
    background: #2a2a2a;
    border: none;
    color: white;
    font-size: 14px;
    gap: 40px;
}
.login-container img {
    width: 100px;
    margin-left: -100px;
}
.input-group {
    position: relative;
}
.input-group input {
    padding-right: 40px; /* Space for the icon */
}
.input-group .eye-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #ffffff;
}

.forgot-password {
    color: #ffcc00;
    font-size: 14px;
    text-decoration: none;
    margin-right: 220px;
}
.forgot-password:hover {
    text-decoration: underline;
}
.text-muted {
    color: #FFFFFF !important;
}
.form-label {
    margin-left: -230px !important;
}
.input-group input {
    background-color: transparent !important; 
    color: white !important; 
    border: 1px solid #ccc; 
}

.input-group input:focus, 
.input-group input:hover {
    background-color: transparent !important; 
    box-shadow: none !important; 
    border-color: #ccc; 
}

.input-group input {
    padding: 12px 16px;  
    font-size: 16px;     
    height: 45px;        
}

.input-group .eye-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #ffffff;
}
.login-divider {
    display: flex;
    align-items: center;
    text-align: center;
    width: 100%;
}

.login-divider::before,
.login-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    margin: 0 10px;
}

.login-divider::before {
    background-color: gray;
}

.login-divider::after {
    background-color: gray;
}

.login-line {
    margin-top: 10px;
}

.social-login {
    display: flex;
    gap: 10px; /* Space between buttons */
}

.social-btn {
    flex: 1; /* Equal width for all buttons */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    font-size: 12px !important;
    border: 1px solid white !important;
    border-radius: 5px;
    background-color: #333; /* Default button color */
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.mt-3 {
    margin-right: 60px;
    margin-top: 1rem !important;
}

.social-btn i {
    margin-right: 8px; /* Space between icon and text */
}

.social-btn:hover {
    background-color: #555; /* Slightly lighter on hover */
}



/* Icon Styling */
.social-btn i {
    font-size: 20px;  /* Adjust icon size */
    margin-right: -35px; /* Space between icon and text */
}

