﻿body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #f4f5f7;
}

/* HEADER */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
}

.logo {
    font-weight: bold;
    font-size: 18px;
    display: flex;
    gap: 8px;
    align-items: center;
}

    .logo i {
        color: #ff4d00;
    }

.back-btn {
    background: #f3e7e2;
    padding: 10px;
    border-radius: 10px;
    color: #ff4d00;
}

/* MAIN */
.container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.card {
    width: 420px;
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    text-align: center;
}

/* ICON */
.icon {
    width: 60px;
    height: 60px;
    background: #ffe9e0;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .icon i {
        color: #ff4d00;
        font-size: 20px;
    }

/* TEXT */
h2 {
    margin-bottom: 10px;
}

.subtitle {
    font-size: 14px;
    color: #777;
    margin-bottom: 25px;
}

/* FORM */
.form-group {
    text-align: left;
    margin-bottom: 20px;
}

    .form-group label {
        font-weight: 600;
        display: block;
        margin-bottom: 8px;
    }

.input-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px;
}

    .input-wrapper i {
        margin-right: 10px;
        color: #999;
    }

    .input-wrapper input {
        border: none;
        outline: none;
        width: 100%;
    }

/* BUTTON */
.btn-submit {
    width: 100%;
    padding: 12px;
    background: #ff4d00;
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
}

    .btn-submit:hover {
        background: #e64400;
    }

/* FOOTER */
.footer {
    margin-top: 20px;
    font-size: 14px;
}

    .footer a {
        color: #ff4d00;
        font-weight: bold;
        margin-left: 5px;
    }

/* BANNER */
.banner {
    margin: 60px auto;
    width: 80%;
    height: 120px;
    border-radius: 20px;
    background: linear-gradient(90deg, #5a2e1d, #0f2a23);
    display: flex;
    align-items: center;
    padding-left: 30px;
    color: white;
}

.banner-text {
    font-size: 18px;
    font-weight: bold;
}

/* COPYRIGHT */
.copyright {
    text-align: center;
    font-size: 12px;
    color: #888;
    margin-bottom: 20px;
}
