.login-main {
    background: url("../img/kaleidoscope-hero.png") center center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding-top: 70px; /* To offset the fixed header */
}

.login-container {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.login-container h2 {
    color: #333;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
    font-family: "Raleway", sans-serif;
}

.form-control {
    border-radius: 8px;
    padding: 12px 20px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
    height: auto;
}

.form-control:focus {
    border-color: #ef6603;
    box-shadow: 0 0 8px rgba(239, 102, 3, 0.1);
}

.btn-primary {
    background-color: #ef6603;
    border: none;
    border-radius: 8px;
    padding: 12px;
    width: 100%;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: #d95b03;
    transform: translateY(-2px);
}

.form-text {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}

.form-text a {
    color: #ef6603;
    text-decoration: none;
    font-weight: 600;
}

.form-text a:hover {
    text-decoration: underline;
}

.card {
    border: none;
    border-radius: 15px;
}

.cardbody-color {
    background-color: #f4f4f4;
}

.profile-image-pic {
    border: 3px solid #ef6603;
}