﻿/* REGISTER CONTAINER */
.register-box {
    width: 100%;
    max-width: 380px;
    margin: auto;
}

/* HEADER */
.register-header {
    margin-bottom: 24px;
}

    .register-header h3 {
        margin: 0;
        font-size: 28px;
        font-weight: 700;
        color: #111827;
    }

    .register-header p {
        margin-top: 6px;
        font-size: 14px;
        color: #6b7280;
    }

/* LABEL */
.form-label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #374151;
}

/* INPUT WRAPPER */
.input-wrapper {
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 0 12px;
    transition: all 0.2s ease;
}

    /* INPUT FOCUS */
    .input-wrapper:focus-within {
        border-color: #2563eb;
        background: white;
        box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    }

    /* ICON */
    .input-wrapper i {
        color: #6b7280;
        font-size: 15px;
        margin-right: 10px;
    }

/* INPUT */
.form-control {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 12px 0;
    font-size: 14px;
}

/* BUTTON */
.btn-register {
    width: 100%;
    border: none;
    background: #2563eb;
    color: white;
    padding: 12px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    margin-top: 10px;
    transition: all 0.2s ease;
}

    .btn-register:hover {
        background: #1d4ed8;
        transform: translateY(-1px);
    }

/* FOOTER */
.register-footer {
    margin-top: 18px;
    text-align: center;
    font-size: 13px;
    color: #6b7280;
}

    .register-footer a {
        text-decoration: none;
        color: #2563eb;
        font-weight: 500;
        margin-left: 5px;
    }

        .register-footer a:hover {
            text-decoration: underline;
        }

/* VALIDATION */
.text-danger.small {
    font-size: 12px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .register-box {
        max-width: 100%;
    }
}
