body {
    font-family: Arial, sans-serif;
    background: #f2f2f2;
}

.login-container {
    width: 350px;
    margin: 100px auto;
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

h2 {
    text-align: center;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
}

input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    width: 100%;
    padding: 10px;
    background: #2ecc71;
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background: #27ae60;
}

.logo-container {
    text-align: center;
    margin-bottom: 15px;
}

.logo {
    max-width: 120px;
    height: auto;
}
.logo {
    max-width: 120px;
    border-radius: 50%;
}
.logo {
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body {
    font-family: Arial, sans-serif;
    background: #f2f2f2;
}

.login-container {
    width: 350px;
    margin: 80px auto;
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.logo-container {
    text-align: center;
    margin-bottom: 10px;
}

.logo-container img {
    max-width: 100px;
}

h2 {
    text-align: center;
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
}

input {
    width: 100%;
    padding: 10px;
}

.password-wrapper {
    position: relative;
}

.password-wrapper span {
    position: absolute;
    right: 10px;
    top: 50%;
    cursor: pointer;
    transform: translateY(-50%);
}

button {
    width: 100%;
    padding: 10px;
    background: green;
    color: white;
    border: none;
    cursor: pointer;
}

.error-box {
    background: #ffe6e6;
    color: #b30000;
    padding: 10px;
    margin-bottom: 10px;
    border-left: 5px solid red;
}

.register-link {
    margin-top: 15px;
    text-align: center;
}

.register-link p {
    margin-bottom: 8px;
    color: #555;
    font-size: 14px;
}

.btn-register {
    display: inline-block;
    padding: 8px 15px;
    background-color: #2ecc71;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    transition: 0.3s;
}

.btn-register:hover {
    background-color: #27ae60;
}

.back-link {
    margin-top: 12px;
    text-align: center;
}

.btn-back {
    display: inline-block;
    padding: 7px 14px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    transition: 0.3s;
}

.btn-back:hover {
    background-color: #2980b9;
}

.alert {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 14px 16px;
    margin-bottom: 15px;

    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;

    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    animation: fadeSlide 0.4s ease;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert .close-alert {
    cursor: pointer;
    font-size: 18px;
    margin-left: 10px;
    opacity: 0.7;
    transition: 0.2s;
}

.alert .close-alert:hover {
    opacity: 1;
}
























/* =========================
   RESPONSIVE MOBILE
   ========================= */

@media (max-width: 768px) {

    body {
        padding: 15px;
    }

    .login-container {
        width: 100%;
        max-width: 100%;
        padding: 20px;
        border-radius: 10px;
    }

    .logo {
        width: 120px;
        margin-bottom: 10px;
    }

    h2 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .form-group label {
        font-size: 14px;
    }

    .form-group input {
        font-size: 16px;
        padding: 12px;
    }

    button {
        width: 100%;
        padding: 12px;
        font-size: 16px;
    }

    .btn-back {
        display: block;
        margin-top: 10px;
        padding: 10px;
        font-size: 15px;
    }

    .error-box,
    .success-box {
        font-size: 14px;
        padding: 10px;
    }

    html, body {
    width: 100%;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

.login-container {
    overflow: hidden;
}

* {
    outline: 1px solid red;
}
}

