.register-container {
    min-height: calc(100vh - 110px);

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 40px 20px;
}

.register-card {
    width: 100%;
    max-width: 550px;

    background: rgba(12, 12, 12, 0.95);

    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;

    padding: 40px;

    box-shadow:
        0 0 30px rgba(212, 175, 55, 0.12);
}

.register-header {
    text-align: center;
    margin-bottom: 30px;
}

.register-header img {
    width: 90px;
    margin-bottom: 15px;
}

.register-header h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 8px;
}

.register-header p {
    color: #b8b8b8;
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.input-group {
    display: flex;
    flex-direction: column;
}

.input-group label {
    color: #d4af37;
    margin-bottom: 8px;
    font-weight: 600;
}

.input-group input {
    background: #111;
    border: 1px solid #2a2a2a;

    color: white;

    padding: 14px;

    border-radius: 10px;

    transition: .3s;
}

.input-group input:focus {
    outline: none;

    border-color: #d4af37;

    box-shadow:
        0 0 10px rgba(212, 175, 55, 0.4);
}

.btn-register {
    margin-top: 10px;

    background: #d4af37;
    color: #000;

    border: none;
    border-radius: 12px;

    padding: 15px;

    font-size: 1rem;
    font-weight: bold;

    cursor: pointer;

    transition: .3s;
}

.btn-register:hover {
    background: #e8c454;

    transform: translateY(-2px);

    box-shadow:
        0 0 20px rgba(212, 175, 55, 0.5);
}

.login-link {
    text-align: center;
    margin-top: 25px;

    display: flex;
    flex-direction: column;
    gap: 8px;
}

.login-link span {
    color: #b8b8b8;
}

.login-link a {
    color: #d4af37;

    text-decoration: none;
    font-weight: bold;

    transition: .3s;
}

.login-link a:hover {
    color: #e8c454;
    text-shadow: 0 0 10px rgba(212, 175, 55, .5);
}

body {
    background: linear-gradient(
        135deg,
        #050505,
        #0c111b,
        #050505
    );
    min-height: 100vh;
}
