* {
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    margin: 0;
    background: #f6f6f6;
}

/* Wrapper */
.login-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Brand */
.login-brand {
    text-align: center;
    margin-bottom: 20px;
}

.login-brand img {
    height: 60px;
}

.login-brand p {
    margin: 5px 0 0;
    color: #6a1b9a;
    font-size: 13px;
    letter-spacing: 1px;
}

/* Card */
.login-card {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.login-card h2 {
    margin: 0;
    color: #333;
    text-align: center;
}

.login-card .subtitle {
    text-align: center;
    color: #777;
    font-size: 14px;
    margin-bottom: 25px;
}

/* Form */
.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 13px;
    margin-bottom: 6px;
    color: #555;
}

.form-group input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 14px;
    transition: 0.3s;
}

.form-group input:focus {
    border-color: #6a1b9a;
    outline: none;
}

/* Extras */
.form-extra {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    margin-bottom: 20px;
}

.form-extra a {
    color: #6a1b9a;
    text-decoration: none;
}

.form-extra a:hover {
    text-decoration: underline;
}

/* Button */
.btn-login {
    width: 100%;
    padding: 13px;
    border: none;
    background: #6a1b9a;
    color: #fff;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-login:hover {
    background: #58207e;
}

/* Footer */
.login-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}

.login-footer a {
    color: #6a1b9a;
    text-decoration: none;
    font-weight: 500;
}
