* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 20px;
}

.register-box {
    width: 100%;
    max-width: 450px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05); 
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1); 
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
    text-align: center;
    color: #ffffff;
}

.logo-container {
    margin-bottom: 20px;
}

.logo {
    max-width: 220px;
    height: auto;
}

h2 {
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 5px;
}

.subtitle {
    font-size: 14px;
    color: #e0e0e0;
    margin-bottom: 25px;
}

.error-alert {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    color: #b91c1c;
    padding: 10px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 20px;
}

.input-group {
    margin-bottom: 20px;
    text-align: left;
}

.input-group label {
    display: block;
    font-size: 13px;
    color: #ffffff;
    margin-bottom: 6px;
    font-weight: 500;
}

.input-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: border 0.3s;
}

.input-group input:focus {
    border-color: #0052cc;
}

.password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-toggle {
    position: absolute;
    right: 15px;
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.password-toggle svg {
    width: 20px;
    height: 20px;
}

.btn-register {
    width: 100%;
    padding: 14px;
    background: #0052cc;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.btn-register:hover {
    background: #0040a3;
}

.footer-text {
    font-size: 13px;
    color: #e0e0e0;
    margin-top: 25px;
}

.login-link {
    color: #4ea8de;
    text-decoration: none;
    font-weight: 500;
}

.login-link:hover {
    text-decoration: none;
    color: #90e0ef;
}

input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear {
    display: none;
}