* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}
.logo{
    font-size: 35px;
    color: aliceblue;
    padding: 15px;
}
body{
    background: linear-gradient(135deg, #114b7e, #0f1a6d);
}
section {
    
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 100%;
    max-width: 400px;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.form-box h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.input-group {
    margin-bottom: 20px;
}

.input-field {
    margin-bottom: 15px;
}

.input-field input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
    font-size: 14px;
    transition: 0.3s;
}

.input-field input:focus {
    border-color: #4facfe;
    box-shadow: 0 0 5px rgba(79, 172, 254, 0.3);
}

.btn-field {
    display: flex;
    justify-content: center;
}

.btn-field button {
    width: 48%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #121258;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    a{
        color: #fff;
    }
}

.btn-field button:hover {
    background: #00c6ff;
}

.error {
    color: red;
    font-size: 14px;
    text-align: center;
    margin-top: 5px;
}