/* GLOBAL */
body {
    margin: 0;
    font-family: "Inter", "Segoe UI", sans-serif;
    background: blanchedalmond url("/../admin/images/image_6.jpg") no-repeat center 20%;
    background-size: cover;
}

/* DARK OVERLAY */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: -1;
}

/* CENTER CONTAINER */
.register-container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

/* REGISTER CARD */
.register-card {
    width: 550px;
    background: rgba(255,255,255,0.9);
    padding: 70px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    backdrop-filter: blur(4px);
    text-align: center;
}


.register-card h1 {
    margin: 0 0 10px;
    color: sienna;
    font-size: 2rem;
}

.subtitle {
    margin-bottom: 25px;
    color: #4a2e1a;
    opacity: 0.9;
}

/* FORM */
.form-group {
    text-align: left;
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 40px;
}

.form-row .form-group {
    flex: 1;
}


.form-group label {
    font-weight: bold;
    color: sienna;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid sienna;
    margin-top: 5px;
    font-family: "Inter", "Segoe UI", sans-serif;
    font-size: 1rem;
}


/* BUTTON */
.register-btn {
    width: 100%;
    padding: 12px;
    background: sienna;
    color: blanchedalmond;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
    font-family: "Inter", "Segoe UI", sans-serif;
}

.register-btn:hover {
    background: #8b4513;
}

/* LOGIN LINK */
.login-text {
    margin-top: 15px;
    color: #4a2e1a;
}

.login-text a {
    color: sienna;
    font-weight: bold;
    text-decoration: none;
}

.login-text a:hover {
    text-decoration: underline;
}

.footer{
text-align:center;
padding:15px;
font-size:14px;
color: white;
}

/* MOBILE */
@media (max-width: 768px) {
    .register-card {
        padding: 25px;
    }

    .form-row {
        flex-direction: column;
    }
}
