/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    font-family: 'Segoe UI', Tahoma, sans-serif;
    background: linear-gradient(135deg, #111827, #1f2937);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* WRAPPER */
.login-wrapper {
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

/* LOGO */
.logo {
    text-align: center;
    margin-bottom: 20px;
}

.logo img {
    width: 180px;
}

/* CONTAINER */
.container {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* TITLE */
.container h1 {
    text-align: center;
    margin-bottom: 25px;
    color: #111827;
}

/* INPUT BOX */
.input-box {
    position: relative;
    margin-bottom: 20px;
}

.input-box input {
    width: 100%;
    padding: 12px 40px 12px 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    outline: none;
    transition: 0.3s;
    font-size: 14px;
}

.input-box input:focus {
    border-color: #2563eb;
}

/* ICON */
.input-box i {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    cursor: pointer;
}

/* REMEMBER */
.Remember-forgot {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 20px;
}

.Remember-forgot a {
    text-decoration: none;
    color: #2563eb;
}

.Remember-forgot a:hover {
    text-decoration: underline;
}

/* BUTTON */
button {
    width: 100%;
    padding: 12px;
    border: none;
    background: #2563eb;
    color: white;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #1e40af;
}

/* RESPONSIVO */
@media (max-width: 480px) {
    .container {
        padding: 20px;
    }

    .logo img {
        width: 140px;
    }
}