﻿body {
    background-color: #f4f6f9;
    font-family: 'Segoe UI', sans-serif;
}

.center-logo-lang {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

.logo-img {
    max-height: 50px;
}

.language-select {
    margin-top: 10px;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.register-card {
    max-width: 450px;
    margin: auto;
    background: #fff;
    padding: 30px 40px;
    border-radius: 12px;
    border-color: #007bff;
    box-shadow: 0px 0px 6px 5px rgb(0 98 203 / 20%);
    outline: none;
}

.form-control {
    margin-bottom: 10px;
    border-radius: 6px;
}

.form-check {
    font-size: 14px;
}

    .form-check input {
        margin-top: 6px;
    }

.btn-primary {
    background-color: #0d6efd;
    font-weight: bold;
    border-radius: 6px;
}

.login-link {
    margin-top: 10px;
    font-size: 14px;
    text-align: center;
}

    .login-link a {
        color: #0d6efd;
        text-decoration: none;
    }

        .login-link a:hover {
            text-decoration: underline;
        }

.gsi-material-button {
    background-color: WHITE;
    border: 1px solid #747775;
    border-radius: 4px;
    box-sizing: border-box;
    color: #1f1f1f;
    cursor: pointer;
    font-family: 'Roboto', arial, sans-serif;
    font-size: 14px;
    height: 40px;
    padding: 0 12px;
    width: 100%;
}

.gsi-material-button-icon {
    height: 20px;
    margin-right: 12px;
    min-width: 20px;
    width: 20px;
}

.gsi-material-button-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.gsi-material-button-contents {
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-primary-custom {
    background-color: #007bff; /*  professional blue*/
    border-color: #007bff;
    color: white;
    font-weight: bold;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 8px; /* rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* subtle shadow */
    transition: all 0.3s ease; /* hover effect */
}

    .btn-primary-custom:hover {
        background-color: #0056b3; /* darker on hover */
        border-color: #0056b3;
        box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15); /* stronger shadow */
    }

    .btn-primary-custom:active {
        background-color: #004085; /* darker on active*/
        border-color: #004085;
        box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2); /* reduced shadow */
    }


.form-group-custom {
    display: flex;
    flex-direction: column; /* vertical layout */
    margin-bottom: 0px;
}

.form-label-custom {
     font-weight: bold; /* highlight text */
    margin-bottom: 5px; /* spacing */
    color: #333; /* text color */
}

.form-control-custom {
    height: 45px; /* input height */
    border-radius: 8px; /* rounded corners */
    border: 1px solid #ccc; /* border color */
    padding: 5px; /* inner padding */
    font-size: 16px; /* text size */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* subtle shadow */
    transition: all 0.3s ease; /* focus effect */
}

    .form-control-custom:focus {
        border-color: #007bff; /* focus border */
        box-shadow: 0 4px 6px rgba(0, 123, 255, 0.2); /* focus shadow */
        outline: none; /* remove default outline */
    }

.language-select option {
    background-repeat: no-repeat;
    background-size: 20px 20px;
    padding-left: 25px;
}

    .language-select option[value="en"] {
        background-image: url('/images/flags/en.png');
    }

    .language-select option[value="ar"] {
        background-image: url('/images/flags/ar.png');
    }

    .language-select option[value="tr"] {
        background-image: url('/images/flags/tr.png');
    }