.enroll-container {
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.header {
    margin: 0;
}



.home-btn {
    background-color: #f5c57e;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease;
}

.home-btn:hover {
    background-color: #e68a00;
}

.footer-home-btn {
    background-color: #ff9900;
    color: white;
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease;
}

.footer-home-btn:hover {
    background-color: #e68a00;
}

h1 {
    margin: 0;
    font-size: 28px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.7);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
}

.form-group select {
    cursor: pointer;
}

.forgot-password {
    text-align: right;
    margin-top: 5px;
    font-size: 14px;
}

.forgot-password a {
    color: #d66000;
    text-decoration: none;
}

.forgot-password a:hover {
    text-decoration: underline;
}

.login-button-container {
    text-align: center;
    margin: 20px 0;
}

.login-button-container .btn {
    min-width: 150px;
    font-weight: bold;
}


.message {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center;
}

.success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.error {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

.footer {
    text-align: center;
    margin-top: 30px;
    color: #666;
    font-size: 14px;
}

.credentials-box {
    background-color: #fff9c4;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #fff59d;
    margin-top: 20px;
}

body {
    background-color: #f5f5f5;
    font-family: 'Arial', sans-serif;
}

.login-container {
    max-width: 500px;
    margin: 40px auto;
    padding: 40px;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.login-container h1 {
    color: #333;
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
}

.login-container p {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input[type="text"],
.form-group input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
    background-color: #f9f9ff;
}

.form-group input[type="text"]:focus,
.form-group input[type="password"]:focus {
    outline: none;
    border-color: #ffbd03;
    box-shadow: 0 0 5px rgba(255, 189, 3, 0.5);
}

.message {
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
}

.error {
    background-color: #ffe6e6;
    color: #d63031;
    border: 1px solid #ff7675;
}

.success {
    background-color: #e6ffe6;
    color: #00b894;
    border: 1px solid #55efc4;
}

.remember-me {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.remember-me input {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.remember-me label {
    color: #666;
    font-size: 15px;
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header img {
    max-width: 80px;
    margin: auto;
    margin-bottom: 15px;
}

.form-links {
    text-align: center;
    margin-top: 20px;
}


  
.signup-link {
    display: inline-block;
    margin-top: 15px;
}

.signup-link a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.signup-link a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.enroll-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 30px;
    background-color: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.enroll-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--text-dark);
    padding: 30px;
    border-radius: var(--radius);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.enroll-header::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    z-index: 0;
}

.enroll-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    z-index: 0;
}

.enroll-header h1 {
    margin: 0 0 15px 0;
    font-size: 36px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    border-bottom: none;
    padding-bottom: 0;
}

.enroll-header p {
    margin: 0;
    font-size: 18px;
    position: relative;
    z-index: 1;
}

.lemon-icon {
    font-size: 24px;
    vertical-align: middle;
    margin: 0 8px;
}

.home-link {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.8);
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.home-link:hover {
    background-color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.home-link i {
    margin-right: 6px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 16px;
}

.form-group input, 
.form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    box-sizing: border-box;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 5px rgba(255, 213, 0, 0.3);
    outline: none;
}


.message {
    padding: 20px;
    border-radius: var(--radius);
    margin-bottom: 30px;
    text-align: center;
    font-size: 16px;
}

.success {
    background-color: #e0f7e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.error {
    background-color: #fdecea;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

.form-links {
    text-align: center;
    margin-top: 25px;
}

.form-links a {
    color: var(--secondary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 16px;
    display: inline-block;
    padding: 5px;
}

.form-links a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.enroll-footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.enroll-footer p {
    color: #666;
    font-size: 14px;
    margin: 5px 0;
}

.feature-list {
    background-color: #f8f9fa;
    border-radius: var(--radius);
    padding: 25px;
    margin-top: 30px;
}

.feature-list h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-dark);
    border-bottom: none;
    display: flex;
    align-items: center;
}

.feature-list h3 i {
    margin-right: 10px;
    color: var(--secondary);
}

.feature-list ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li i {
    margin-right: 10px;
    color: var(--primary);
}

@media (max-width: 768px) {
    .enroll-container {
        margin: 30px 15px;
        padding: 20px;
    }
    
    .enroll-header {
        padding: 20px;
    }
    
    .enroll-header h1 {
        font-size: 28px;
    }
    
    .btn {
        padding: 12px 16px;
    }
}