﻿body {
    height: 100vh;
    margin: 0;
    direction: rtl;
    background-color: #e9ecef;
}

html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.container {
    flex: 1; /* This pushes the footer down */
}

header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 15px 50px;
    /*    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
*/ transition: 0.7s;
    margin-bottom: 15px;
    border-bottom: none;

}
header img {
        width: 50px;
        height: 50px;
    }


.Logo {
    margin-left : auto;
}
.UniversityLogo {
    margin-right : auto;
}



.logInContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .header {
        position: relative;
        margin-bottom: 12px;
        right: 0;
        font-size: 24px;
        font-weight: bold;
        color: darkblue;
/*        justify-content : right;
*/      


    }

    .signup-card {
        width: 470px;
        background: #fff;
        border-radius: 15px;
        padding: 25px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        margin-bottom : 60px;
    }

    .image {
        margin-top: -10px;
    }

    .signup-card .form-control {
        border-radius: 10px;
    }

.signup-card .btn {
    border-radius: 30px;
    background-color: darkblue;
    transform: perspective(500px) rotateX(10deg);
    transition: all 0.5s ease;
}

    .signup-card .btn:hover {
        box-shadow: none;
        transform: translateY(5px);
        color: #fff;
        background-color: black;
        box-shadow: 3px 3px 7px rgba(255, 255, 255, 0.7), -3px -3px 7px rgba(255, 255, 255, 0.7); /* Add multiple shadows */
    }
        /*signup-card .btn:hover {
            background-color: #002a63;
        }*/

    .custom-checkbox {
        margin-bottom: 5px; /* Add 5px space below the checkbox */
    }

    .signup-card .d-grid {
        margin-top: 5px; /* Add 5px space above the button */
    }



footer {
    background-color: #f1f1f1;
    text-align: center;
    padding: 10px;
    width: 100%;
}
