@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --text-primary: #fbfcfc;
    --text-secondary: #dbdbdb;
    --button-primary: #0918e5;
    --button-secondary: #0611b1;
    --background-color: #000000;
    --background-secondary: #0625b1;
    --main-color: #090de5;
}

body {
    font-family: 'Ubuntu', sans-serif;
    height: 100vh;
    background: linear-gradient(135deg, var(--background-color), var(--background-secondary));
    display: flex;
    justify-content: center;
    align-items: center;
}

.register-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.register-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.register-card {
    background-color: white;
    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: var(--main-color);
}

.register-card input {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
}

.register-card button {
    width: 100%;
    padding: 12px;
    background: var(--button-primary);
    border: none;
    border-radius: 30px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.register-card button:hover {
    background: var(--button-secondary);
}

.login-link {
    margin-top: 16px;
    font-size: 14px;
    color: #555;
}

.login-link a {
    color: var(--main-color);
    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: var(--text-primary);
}

.back-home-link a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-home-link a:hover {
    color: var(--text-secondary);
}