* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    font-family: Arial, sans-serif;

    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: white;
}

.register-container {
    width: 350px;

    display: flex;
    flex-direction: column;
    gap: 18px;

    padding: 35px;

    border-radius: 20px;

    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);

    backdrop-filter: blur(10px);

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.register-container h2 {
    text-align: center;

    font-size: 32px;
    letter-spacing: 1px;
}

.register-container input {
    width: 100%;

    padding: 14px;

    border: none;
    border-radius: 12px;

    outline: none;

    background: rgba(255, 255, 255, 0.1);
    color: white;

    font-size: 15px;

    transition: 0.3s;
}

.register-container input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.register-container input:focus {
    background: rgba(255, 255, 255, 0.15);

    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.15);
}

.register-container button {
    padding: 14px;

    border: none;
    border-radius: 12px;

    background: rgba(255, 255, 255, 0.12);
    color: white;

    font-size: 16px;

    cursor: pointer;

    transition: 0.3s;
}

.register-container button:hover {
    transform: translateY(-2px);

    background: rgba(255, 255, 255, 0.2);

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.home-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);

    font-size: 14px;

    align-self: center;

    padding: 6px 14px;

    border-radius: 10px;

    background: rgba(255, 255, 255, 0.06);

    transition: 0.3s;
}

.home-link:hover {
    color: white;

    background: rgba(255, 255, 255, 0.12);

    transform: translateY(-1px);
}