﻿/*  LOGIN PAGE*/
body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    background: linear-gradient(135deg, #fffaf5, #f7f9fb);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}


.login-page {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}


.login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}


.login-card {
    width:100%;
    max-width: 520px;
    background: #ffffff;
    backdrop-filter: blur(12px);
    border-radius: 22px;
    padding: 60px 70px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
    border-top: 6px solid #fda085;
    transition: all 0.3s ease;
    animation: fadeIn 0.8s ease-in-out;
}

    .login-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 22px 50px rgba(121, 146, 151, 0.25);
    }


.login-logo {
    width: 130px;
    height: 130px;
    margin-bottom: 40px;
    border-radius: 50%;
    background-image: url('../content/nesting .jpg');
    background-size: cover;
    background-position: center;
    border: 3px solid rgba(253, 160, 133, 0.8);
    box-shadow: 0 4px 14px rgba(253, 160, 133, 0.45);
}


.login-title {
    font-size: 32px;
    font-weight: 700;
    color: #2b2b2b;
    text-transform: uppercase;
    margin-bottom: 45px;
    margin-top:0px;
    position: relative;
}

 

form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.form-control {
    width: 1000px;
    max-width: 400px;
    padding: 14px 16px;
    border: 3px solid #1b3a3f;
    border-radius: 12px;
    background: #ffffff;
    color: #333;
    font-size: 15px;
    transition: all 0.3s ease;
    margin-bottom: 25px;
    box-sizing: border-box;
}

    .form-control:focus {
        border-color: #1f4b41;
        box-shadow: 0 0 10px rgba(253, 160, 133, 0.4);
        outline: none;
    }



::placeholder {
    color: #aaa;
    opacity: 1;
}


.login-btn {
    width: 45%;
    max-width: 200px;
    padding: 12px 0;
    background: #ea7958;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 6px 14px rgba(253, 160, 133, 0.3);
    border: 2px solid #1b3a3f;
}

    .login-btn:hover {
        background: #fda085;
        transform: translateY(-2px);
        box-shadow: 0 8px 18px rgba(253, 160, 133, 0.45);
    }


.text-danger {
    color: #ff4f4f !important;
    font-weight: 600;
    margin-top: 15px;
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .login-card {
        width: 95%;
        padding: 40px 30px;
    }

    .login-logo {
        width: 110px;
        height: 110px;
        margin-bottom: 25px;
    }

    .login-title {
        font-size: 26px;
        margin-bottom: 35px;
    }

    .form-control {
        max-width: 100%;
    }

    .login-btn {
        width: 60%;
        font-size: 15px;
    }
}


.login-quote {
    font-size: 20px;
    margin-bottom: 45px;
    margin-top:5px;
    line-height: 1.4;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
   

/*User Registration */

body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    background-color: #f7f9fb;
    background-size: cover;
    min-height: 100vh; 
    display: flex;
    justify-content: center;
    align-items: flex-start; 
    overflow-y: auto; 
}

.user-page {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    min-height: 100vh;
    padding: 60px 15px; 
    box-sizing: border-box;
}

.user-wrapper {
    width: 100%;
    max-width: 900px;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    padding: 60px 80px;
    animation: fadeIn 0.7s ease;
    overflow: visible; 
    margin-bottom: 40px; 
}


.form-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
    margin-top: 0; 
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

    .form-title::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 120px;
        height: 4px;
        background: linear-gradient(90deg, #f6d365, #fda085);
        border-radius: 2px;
    }


#user-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.form-label {
    font-weight: 600;
    color: #004d40;
    margin-bottom: 6px;
    font-size: 15px;
    text-align: left;
}


.form-input {
    padding: 14px 16px;
    border: 2px solid #fda085;
    border-radius: 10px;
    background: #ffffff;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

    .form-input:focus {
        border-color: #f6d365;
        background: #ffffff;
        box-shadow: 0 0 10px rgba(253, 160, 133, 0.4);
        outline: none;
    }


textarea.form-input {
    resize: none;
    min-height: 100px;
}


.form-action {
    text-align: center;
    margin-top: 30px;
}

.btn-submit {
    background: linear-gradient(90deg, #fda085, #f6d365);
    color: #fff;
    border: none;
    padding: 14px 40px;
    font-weight: 600;
    font-size: 17px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btn-submit:hover {
        background: linear-gradient(90deg, #f6d365, #fda085);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(253, 160, 133, 0.3);
    }


.form-status {
    text-align: center;
    font-weight: 600;
    margin-top: 15px;
    font-size: 16px;
}

::placeholder {
    color: #999;
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 992px) {
    .user-wrapper {
        padding: 50px 40px;
    }
}

@media (max-width: 768px) {
    .user-wrapper {
        padding: 40px 25px;
        border-radius: 15px;
    }

    .form-title {
        font-size: 26px;
    }

    .btn-submit {
        width: 100%;
    }
}





/*Add Booking page*/

body {
    font-family: "Poppins", sans-serif;
    background: linear-gradient(#f5f5f5, #f5f5f5, #f5f5f5);
    margin: 0;
    padding: 0;
    height: 100vh;
}


.booking-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.booking-container {
    width: 100%;
    max-width: 950px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.booking-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 60px 80px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    animation: fadeIn 0.7s ease;
    border-top: 6px solid #fda085;
    transition: all 0.3s ease;
}

    .booking-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 50px rgba(253, 160, 133, 0.35);
    }


#formTitle {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

    #formTitle::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 120px;
        height: 4px;
        background: linear-gradient(90deg, #f6d365, #fda085);
        border-radius: 3px;
    }


#booking-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 40px;
}

@media (max-width: 768px) {
    #booking-form {
        grid-template-columns: 1fr;
    }
}


.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-weight: 600;
    color: #004d40;
    margin-bottom: 6px;
    font-size: 15px;
}


.form-control,
.form-select {
    padding: 14px 16px;
    border: 3px solid #799297;
    border-radius: 10px;
    background: #fffaf7;
    color: #000;
    font-size: 15px;
    transition: all 0.3s ease;
}

    .form-control:focus,
    .form-select:focus {
        border-color: #799297;
        background: #fff;
        box-shadow: 0 0 8px rgb(253, 174, 133, 0.30);
        outline: none;
    }


.submit-btn {
    grid-column: 1 / -1;
    display: block;
    margin: 30px auto 10px;
    width: 200px;
    padding: 14px;
    background: linear-gradient(90deg, #fda085, #f6d365);
    border: none;
    color: black;
    font-weight: 600;
    font-size: 17px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

    .submit-btn:hover {
        transform: translateY(-3px);
        background: linear-gradient(90deg, #f6d365, #fda085);
        box-shadow: 0 8px 20px rgba(253, 160, 133, 0.4);
    }


.form-status {
    grid-column: 1 / -1;
    text-align: center;
    font-weight: 600;
    margin-top: 10px;
    font-size: 16px;
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
