/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : Jan 31, 2024, 5:12:39 PM
    Author     : rushang.shah
*/

/* Reset some default styles */
body, h1, h2, p, input {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial', sans-serif;
}

/* Style the registration form container */
.custom-registration-form {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Style the form header */
.custom-registration-form h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

/* Style form labels */
.custom-registration-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

/* Style form input fields */
.custom-registration-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

/* Style the Register button */
.custom-registration-form input[type="button"] {
    background-color: #4caf50;
    color: white;
    cursor: pointer;
}

.custom-registration-form input[type="button"]:hover {
    background-color: #45a049;
}

/* Style the required field indicator */
.custom-registration-form strong {
    color: red;
}


/* Style the login form container */
#loginform {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Style error messages */
.error-message {
    color: red;
    margin-bottom: 10px;
}

/* Style form labels */
#loginform label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

/* Style form input fields */
#loginform input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

/* Style the Login button */
#loginform input[type="button"] {
    background-color: #4caf50;
    color: white;
    cursor: pointer;
}

#loginform input[type="button"]:hover {
    background-color: #45a049;
}

.display-hide{
    display: none;
}