/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: 'Arial', sans-serif;
    background: url('a.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #00fff7;
}

/* Container Styling */
.container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

/* Form Box Styling */
.form-box {
    background: rgba(0, 72, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 42, 255, 0.2);
    text-align: center;
    position: relative;
}

/* Form Title */
.form-box h1 {
    margin-bottom: 20px;
    font-size: 26px;
    font-weight: bold;
}

/* Input Group Styling */
.input-group {
    margin-bottom: 20px;
    text-align: left;
}

.input-group label {
    font-size: 14px;
    margin-bottom: 5px;
    display: block;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    font-size: 14px;
    outline: none;
}

/* Hidden Element */
.hidden {
    display: none;
}

/* Button Styling */
.btn {
    width: 100%;
    padding: 12px;
    background: #00d5ff;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.btn:hover {
    background: #00fff7;
}

/* Toggle Link Styling */
.toggle-link {
    margin-top: 10px;
    font-size: 14px;
}

.toggle-link a {
    color: #00fff7;
    text-decoration: none;
    font-weight: bold;
}

.toggle-link a:hover {
    text-decoration: underline;
}