﻿

body {
    background-image: url('/logo/Compass PNG@4x.png');
    background-size: 80% auto;
    background-position: center top 200px; /* Moves the image 50 pixels down from the top */
    background-repeat: no-repeat;
}
    body::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5); /* Black with 50% opacity */
    }

.login-container {
    max-width: 400px;
    margin: 10px auto 50px;
    padding: 30px;
    background-color: #fff;
    border-radius: 0px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s; /* Add transition for smooth effect */
}

    .login-container:hover {
        transform: scale(1.1); /* Increase size on hover */
    }

    .login-container h2 {
        margin-top: 20px; /* Adjust margin-top to move it slightly down */
        margin-bottom: 20px;
        color: #333;
        display: inline-block; /* Display inline block to make it inline with the logo */
    }
.additional-text {
    text-align: left; /* Align the text to the left */
    margin-top: 20px; /* Add margin-top for spacing */
    font-size:11px;
}

.form-control {
    border-radius: 25px;
    padding: 15px;
}

.header {
    text-align: center;
    margin-bottom: 30px;
    margin-top: 50px;
}

    .header h1 {
        font-size: 40px;
        color: #212529;
        /*color: white;*/
        font-weight: bold;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    }

    .header p {
        font-size: 18px;
        /*color: #666;*/
        /*color:white;*/
        margin-top: 20px;
    }

.btn-primary {
    border-radius: 0px;
    padding: 15px;
    background-color: #007bff;
    border: none;
    width: 30%;
    padding:10px;
    margin-left:230px;
}

    .btn-primary:hover {
        background-color: #4D94FF;
    }
.logo {
    width:150px; /* Adjust width as needed */
    height: auto; /* Maintain aspect ratio */
}


