/* Full Center Layout */
.login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    background: #ffffff;
    font-family: 'Segoe UI', sans-serif;
}

/* Box */
.login-box {
    width: 100%;
    max-width: 420px;
}

/* Label */
.login-box label {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    display: block;
    margin-bottom: 10px;
}

/* Input */
.login-box input[type="text"] {
    width: 100%;
    padding: 18px;
    border-radius: 14px;
    border: none;
    background: #eef2f7;
    font-size: 18px;
    outline: none;
    margin-bottom: 20px;
}

/* Remember */
.forgetmenot {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.forgetmenot label {
    font-size: 18px;
    color: #2c3e50;
}

/* Checkbox */
input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

/* Button */
.login-box input[type="submit"] {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    border: none;
    background: #e91e63;
    color: white;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
}

/* Hover */
.login-box input[type="submit"]:hover {
    background: #d81b60;
}