@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Ubuntu', sans-serif;
    height: 100vh;
    background-image: url("/assets/images/main-background.jpg");
    display: flex;
    justify-content: center;
    align-items: center;
}

.register-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.register-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.register-card {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 360px;
    text-align: center;
}

.register-card h2 {
    margin-bottom: 24px;
    color: #f0f4f8;
}

.register-card input {
    width: 100%;
    padding: 12px 16px;
    color: #f0f4f8;
    margin-bottom: 16px;
    border: 1px solid #2c2c2c;
    background-color: transparent;
    border-radius: 8px;
    font-size: 16px;
}

.register-card button {
    width: 100%;
    padding: 12px;
    background: #102a43;
    border: none;
    border-radius: 30px;
    color: #f0f4f8;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.register-card button:hover {
    background: #f0f4f8;
    color: #102a43;
}

.login-link {
    margin-top: 16px;
    font-size: 14px;
    color: #f0f4f8;
}

.login-link a {
    color: #a8dadc;
    text-decoration: none;
    font-weight: 500;
}

.login-link a:hover {
    text-decoration: underline;
}

.back-home-link {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #f0f4f8;
}

.back-home-link a {
    color: #f0f4f8;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-home-link a:hover {
    color: #a8dadc;
}