﻿/* Scoped CSS for #myll-register */
#myll-register body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    color: #333;
}

#myll-register h2 {
    font-size: 24px;
    color: #4CAF50;
    margin-bottom: 20px;
}

#myll-register em {
    color: #ff0000;
}

#myll-register form {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 600px;
    margin: 40px auto;
}

/* Fieldsets and Legends */
#myll-register fieldset {
    border: none;
    margin-bottom: 20px;
}

#myll-register legend {
    font-size: 18px;
    color: #333;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Form Labels and Inputs */
#myll-register label {
    font-size: 14px;
    display: block;
    margin-bottom: 6px;
    color: #333;
}

#myll-register input[type="text"],
#myll-register input[type="email"],
#myll-register input[type="password"] {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border-radius: 4px;
    border: 1px solid #ccc;
    margin-bottom: 15px;
    box-sizing: border-box;
}

#myll-register input[type="checkbox"] {
    margin-right: 10px;
}

#myll-register input[type="submit"],
#myll-register input[type="button"] {
    padding: 10px 20px;
    background-color: #4CAF50;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
}

    #myll-register input[type="submit"]:hover,
    #myll-register input[type="button"]:hover {
        background-color: #45a049;
    }

#myll-register input[type="button"] {
    background-color: #ccc;
}

    #myll-register input[type="button"]:hover {
        background-color: #bbb;
    }

/* Error Messages */
#myll-register .error {
    background-color: #f8d7da;
    color: #721c24;
    padding: 15px;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    margin-bottom: 20px;
}

#myll-register .errmsg {
    font-size: 12px;
}

/* Info Alert */
#myll-register .alert {
    padding: 15px;
    background-color: #e7f3fe;
    color: #31708f;
    border: 1px solid #bce8f1;
    border-radius: 4px;
    margin-bottom: 20px;
}

#myll-register .alert-info {
    background-color: #d9edf7;
    color: #31708f;
}

/* Responsive Layout */
@media (max-width: 600px) {
    #myll-register form {
        padding: 10px;
        margin: 20px;
    }

    #myll-register h2 {
        font-size: 20px;
    }

    #myll-register input[type="text"],
    #myll-register input[type="email"],
    #myll-register input[type="password"] {
        padding: 8px;
        font-size: 14px;
    }
}
