* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url("images/backgroundloginregister.png");
    background-size: cover;
    background-position: center;
}

.container {
    width: 360px;
}

.register-form {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    padding: 35px;
    border-radius: 12px;
}

.form-title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: #111827;
    margin-bottom: 5px;
}

.form-subtitle {
    text-align: center;
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 25px;
}

.input-group {
    margin-bottom: 15px;
}

.input-group input {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #f9fafb;
    transition: 0.2s;
}

.input-group input:focus {
    border-color: #2563eb;
    outline: none;
    background: #fff;
}

.btn {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    background: #2563eb;
    border: none;
    color: white;
    font-size: 16px;
    transition: 0.3s;
}

.btn:hover {
    background: #1d4ed8;
}

.login-register-text {
    margin-top: 15px;
    font-size: 14px;
    text-align: center;
    color: #374151;
}

.login-register-text a {
    color: #2563eb;
    text-decoration: none;
    font-weight: bold;
}

.login-register-text a:hover {
    text-decoration: underline;
}

.login-form {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    padding: 35px;
    border-radius: 12px;
}
