* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body {
    background: #111;
    color: #fff;
}

.container {
    max-width: 420px;
    margin: auto;
    padding: 20px;
}

.header {
    padding-top: 10px;
}

.back-btn {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
}

.card {
    margin-top: 40px;
    text-align: center;
}

.logo {
    width: 130px;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 25px;
}

form {
    margin-top: 15px;
}

label {
    font-size: 14px;
    display: block;
    text-align: left;
    margin-bottom: 6px;
}

.input-group input,
select,
textarea {
    width: 100%;
    padding: 13px;
    border-radius: 8px;
    border: none;
    outline: none;
    font-size: 16px;
    background: #222;
    color: white;
}

.btn {
    width: 100%;
    padding: 14px;
    background: #26ea30ba;
    border: none;
    border-radius: 8px;
    margin-top: 20px;
    font-size: 16px;
    cursor: pointer;
}

.btn:hover {
    opacity: 0.8;
}

.btn-link {
    display: block;
    text-align: center;
    padding: 12px;
    margin-top: 18px;
    background: #235ed4b3;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
}

.btn-link:hover {
    opacity: .85;
}

form input,
textarea {
    width: 100%;
    padding: 13px;
    background: #222;
    border: none;
    outline: none;
    border-radius: 8px;
    margin-bottom: 18px;
    color: white;
    font-size: 15px;
}

.section-title {
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 16px;
    text-align: left;
    color: #e50914;
}

.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    min-width: 260px;
    padding: 15px 20px;
    background: #e74c3c;
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(-20px);
    transition: all .4s ease;
    z-index: 9999;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast.success {
    background: #2ecc71;
}

.toast.error {
    background: #e74c3c;
}

.toast.warning {
    background: #f39c12;
}