/*
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 : Oct 22, 2024, 5:21:40 PM
    Author     : Oluwatoyin
*/

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


.wallpaper-section {
    position: relative;
    width: 100%;
    height: 50vh; /* You can increase this to give more height to the background */
    background: url('../image/login.jpg') no-repeat center center/cover;
}

.reg-form-main label{
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Light black overlay */
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay h1 {
    color: white;
    font-size: 4rem;
    text-align: center;
}

.overlay h2 {
    color: white;
    font-size: 4rem;
    text-align: center;
}

.registrationWrapper {
    position: relative;
    top: -50px; /* Moves the form upwards to overlap with the registration section */
    z-index: 2; /* Ensure the form is on top of the background */
    margin: 30px auto;
    max-width: fit-content;
    background-color: #fff;
    padding: 20px; /* Add padding if needed */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1); /* Optional: adds a slight shadow */
}

.reg-form-main {
    margin: 20px;
    min-width: 400px;
}

.reg-heigth-div {
    height: 12px;
}

.sbmit-reg-btn{
    background: #1a237e;
    color: #ffffff;
    outline: none;   
    border: none;
    padding: 5px;
}

.for-password{
    text-decoration: none;
    float: right;
    color: red;
}
@media only screen and (max-width: 600px) {
    #navbutton {
        font-size: 15px;
        border: none;
    }
    .reg-form-main {
        margin: 20px;
        min-width: 0px;
    }
}
