/* LOGIN PAGE */

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    padding: 0;
    margin: 0;
}

.login-body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #ff8e29, #f6b36b);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-wrapper {
    width: 100%;
    padding: 20px;
}

.login-card {
    max-width: 420px;
    margin: auto;
    background: #fff;
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

.login-title {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 5px;
}

.login-subtitle {
    text-align: center;
    font-size: 14px;
    color: #777;
    margin-bottom: 25px;
}

.login-group {
    margin-bottom: 18px;
}

.login-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

.input-icon {
    position: relative;
}

.input-icon span {      
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff8e29;
    font-size: 22px;
}

.input-icon input {
    width: 100%;
    padding: 10px 12px 10px 42px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 15px;
}

.input-icon input:focus {
    outline: none;
    border-color: #ff8e29;
    box-shadow: 0 0 0 3px rgba(255, 142, 41, 0.25);
}

/* Options */
.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    margin-bottom: 22px;
}

/* Button */
.login-btn {
    width: 100%;
    padding: 12px;
    background: #ff8e29;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.login-btn:hover {
    background: #e87f20;
}


.login-error {
    color: #da1710ff;
    background: #fdecea;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 15px;
    text-align: center;
    font-size: 14px;
}


/* Responsive */
@media (max-width: 480px) {
    .login-card {
        padding: 30px 20px;
    }
}
