* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", sans-serif;
    min-height: 100vh;
    background: linear-gradient(
        135deg,
        #0f9b0f,
        #38ef7d
    );
    display: flex;
    flex-direction: column;
}

.page-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 15px;
}

.registration-card {
    width: 100%;
    max-width: 500px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.registration-card h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #fff;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input,
select {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    outline: none;
}

input:focus,
select:focus {
    box-shadow: 0 0 0 3px rgba(255,255,255,0.4);
}

.btn-register {
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: #ffffff;
    color: #0f9b0f;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-register:hover {
    transform: translateY(-2px);
}

.login-link {
    margin-top: 20px;
    text-align: center;
    color: #fff;
}

.login-link a {
    color: #fff;
    font-weight: bold;
    text-decoration: none;
}

.login-link a:hover {
    text-decoration: underline;
}

/* Footer */

.simple-footer {
    background: #111;
    color: #fff;
    padding: 40px 20px 15px;
}

.footer-wrapper {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.footer-column h3,
.footer-column h2 {
    margin-bottom: 12px;
}

.footer-column p {
    margin-bottom: 8px;
    color: #ccc;
}

.footer-column a {
    color: white;
    margin-right: 15px;
    font-size: 20px;
    transition: 0.3s;
}

.footer-column a:hover {
    color: #38ef7d;
}

.footer-bottom {
    text-align: center;
    margin-top: 25px;
    border-top: 1px solid #333;
    padding-top: 15px;
}

.footer-bottom a {
    color: #38ef7d;
}

/* Mobile */

@media (max-width: 576px) {
    .registration-card {
        padding: 25px;
    }

    input,
    select,
    button {
        font-size: 14px;
    }
}