* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f6fa;
    padding: 20px;
    font-family: Arial, sans-serif;
}

/* CARD */
.register-card {
    width: 100%;
    max-width: 750px;
    background: #fff;
    border-radius: 28px;
    padding: 40px 35px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    animation: fadeUp 0.6s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* LOGO */
.logo-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto;
}

.logo-wrapper img {
    width: 100%;
    object-fit: contain;
}

/* TITLES */
.container-title {
    text-align: center;
    margin-bottom: 30px;
}

.welcome-title {
    font-size: 42px;
    font-weight: 900;
    color: #0d6efd;
}

.highlight {
    color: #ff7b1f;
}

.welcome-subtitle {
    margin-top: 5px;
    color: #777;
    font-size: 15px;
}

/* FORM */
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    width: 100%;
}

/* LABEL */
.form-label {
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
}

/* INPUT */
.custom-input {
    width: 100%;
    height: 55px;
    border-radius: 14px;
    border: 2px solid #ececec;
    padding: 0 16px;
    font-size: 15px;
    transition: 0.3s ease;
}

.custom-input:focus {
    border-color: #ff7b1f;
    box-shadow: none;
}

/* SELECT */
select.custom-input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='%23888' d='M5.5 7l4.5 4 4.5-4'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 45px;
}

/* PASSWORD */
.password-wrapper {
    position: relative;
}

.password-wrapper .custom-input {
    padding-right: 58px;
}

.toggle-password {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #888;
    width: 38px;
    height: 38px;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.toggle-password:hover {
    color: #ff7b1f;
}

.toggle-password svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.toggle-password .icon-eye-off {
    display: none;
}

.toggle-password.is-visible .icon-eye {
    display: none;
}

.toggle-password.is-visible .icon-eye-off {
    display: block;
}

/* BUTTON */
.login-btn {
    width: 100%;
    height: 55px;
    border: none;
    border-radius: 14px;
    background: #0d6efd;
    color: white;
    font-size: 16px;
    font-weight: 700;
    transition: 0.3s ease;
    margin-top: 10px;
}

.login-btn:hover {
    background: #ff7b1f;
    transform: translateY(-2px);
}

/* TERMS */
.terms-wrapper {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.form-check-label a {
    text-decoration: none;
    color: #0d6efd;
    font-weight: 600;
}

/* LOGIN LINK */
.bottom-links {
    text-align: center;
    margin-top: 18px;
}

.register-btn {
    text-decoration: none;
    color: #ff7b1f;
    font-weight: 700;
}

.register-btn:hover {
    color: #0d6efd;
    text-decoration: none;
}

/* STORE BUTTONS */
.store-buttons {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.store-btn {
    flex: 1;
    height: 55px;
    border: none;
    border-radius: 14px;
    background: #111;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    transition: 0.3s ease;
}

.store-btn i {
    font-size: 22px;
}

.store-btn:hover {
    transform: translateY(-2px);
    background: #222;
}

/* RESPONSIVE */
@media(max-width: 768px) {

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .register-card {
        padding: 30px 22px;
    }

    .welcome-title {
        font-size: 32px;
    }

    .store-buttons {
        flex-direction: column;
    }

}
