﻿

body {
   /* background-color: #f0f2f5;*/
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* The main two-panel card container */
.login-card {
    display: flex;
  /*  background-color: white;*/
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    max-width: 1000px;
    width: 100%;
}

/* LEFT PANEL: University Info (TEAL SIDE) */
.university-info-panel {
    background-color: #17a2b8;
    color: white;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Important: Pushes main content up and footer down */
    align-items: center;
    text-align: center;
}

    .university-info-panel main {
        /* Ensures the main content takes up remaining space and is centered */
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 100%;
    }

.university-title {
    font-size: 1.25rem;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.certificate-text {
    font-size: 1.7rem;
    margin: 0;
    color: yellow;
    text-transform: uppercase;
}

/* FOOTER STYLES */
.university-info-panel footer {
    width: 100%;
    margin-top: 40px;
    padding-top: 20px;
    /* Light border to separate footer from main content, matching the teal color */
    /* border-top: 10px solid rgba(236, 230, 230, 0.3); */
    border-top: 2px solid #027f92;
}

.contact-section {
    margin-bottom: 15px;
    gap: 20px;
}

footer {
    background-color: #c3edf7;
}

.footer-detail {
    position: relative;
    text-align: start;
}

    /*
        .footer-detail:first-child::after {
            content: '';
            position: absolute;
            top: 10%;
            right: 0;
            height: 80%;
            width: 1px;
            background-color: black;
            border: 1px solid black;
           
        } */

    .footer-detail h6 {
        font-weight: bold;
        margin-bottom: -5px;
        font-size: 1rem;
        color: black;
        margin-left: 20px;
    }

    .footer-detail p {
        font-size: 0.90rem;
        color: black;
        text-align: start;
        margin-left: 20px;
    }

.copyright-text {
    font-size: 0.8rem;
    opacity: 0.7;
    margin: 0;
    color: black;
}


/* RIGHT PANEL: Login Form */
.login-panel {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Input Fields */
.input-group-prepend span {
    background-color: #f8f9fa;
    border-right: none;
    color: #495057;
}

.form-control {
    border-left: none;
    border-radius: 0 8px 8px 0;
    height: 45px;
}

.input-group-prepend .input-group-text {
    border-radius: 8px 0 0 8px;
    border-color: #ced4da;
}

/* Forgot Password Link */
.forgot-password {
    font-size: 0.9rem;
    color: #17a2b8;
}

/* Login Button */
.login-button {
    background-color: #17a2b8;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    padding: 10px;
}

    .login-button:hover {
        background-color: #17a2b8;
    }

/* Create Account Link */
.create-account-link {
    font-weight: bold;
    color: #17a2b8;
}


