﻿body {
    background-image: url('/css/Images/Pana 4  - 12 Apostles terrace .jpg');
    background-size: cover;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    
}
.navbar-custom {
    background-color: #0a1931; /* dark navy */
    font-family: 'Gotham Medium', sans-serif;
}

    .navbar-custom .nav-link,
    .navbar-custom .navbar-brand {
        color: #ffffff !important;
        transition: color 0.3s ease;
    }

        .navbar-custom .nav-link:hover,
        .navbar-custom .navbar-brand:hover {
            color: #00b4d8 !important; /* light cyan hover */
        }

    /* Optional: make toggler icon white on mobile */
    .navbar-custom .navbar-toggler {
        border-color: rgba(255, 255, 255, 0.3);
    }

    .navbar-custom .navbar-toggler-icon {
        filter: invert(1);
    }
main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: left;
    text-align: center;
    min-height: calc(100vh - 70px); /* Adjust for navbar height */
    padding: 20px;
}
.account-container {
    max-width: 600px;
    width: 500px;
    height: 100vh;
    max-height:70vh;
    margin: 40px auto;
    padding: 75px;
    background: #101a33; /* Dark blue theme */
    border-radius: 20px;
    box-shadow: 0px 8px 20px rgba(0,0,0,0.4);
    color: #fff;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.account-container button {
    display: block;
    margin: 20px auto 0 auto; /* centers horizontally */
}

