/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/JSP_Servlet/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : Jan 11, 2026, 12:16:33 PM
    Author     : user-pc
*/

/* style.css */

/* 1. Basic Page Reset and Background */

:root {
    --primary-pink: #ffb7d5;
    --hover-pink: #fa9ec3;
    --text-dark: #b565a7;
    --text-muted: #777;
    --bg-light: #fff5f0;
    --input-bg: #fffaf8;
    --white: #ffffff;
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--primary-pink); /* Light cream/yellowish background */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

/* 2. Container Card */
.register-container {
    background-color: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

/* 3. Typography */
h2 {
    color: white; 
    margin-bottom: 5px;
}

p {
    color: #6a8c5d; /* Muted green */
    font-size: 14px;
    margin-bottom: 30px;
}

/* 4. Form Layout */
form-group {
    text-align: left; /* Labels should be left-aligned */
    margin-botton: 18px;
}

label {
    display: block;
    font-weight: 600;
    color: black;
    margin-bottom: 8px;
    margin-left: 5px;
    font-size: 14px;
}

/* 5. Inputs and Select Dropdown */
input[type="text"],
input[type="email"],
input[type="password"],
select {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid var(--bg-light);
    border-radius: 20px;
    background-color: var(--input-bg);
    box-sizing: border-box; /* Ensures padding doesn't affect width */
    font-size: 14px;
    color: #333;
    transition: 0.3s ease;
}

/* Change focus color */
input:focus, select:focus {
    outline: none;
    border-color: var(--primary-pink);
    background-color: #fff;
    box-shadow: 0 0 8px rgba(255, 183, 213, 0.3)
}

/* 6. The Submit Button */
button[type="submit"] {
    width: 100%;
    padding: 12px;
    background-color: var(--primary-pink); /* Sage green from your image */
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
    margin-top: 10px;
}

button[type="submit"]:hover {
    background-color: var(--hover-pink);
    transform: translateY(-1px);
}