/* Reset Defaults */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Pyidaungsu";
    src: url("/fonts/Pyidaungsu-Regular.ttf") format("truetype"),
        url("/fonts/Pyidaungsu-Bold.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

/* Centering the Page */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #f8f9fa;
    padding: 20px;
}

/* Login Container */
.login-container {
    display: flex;
    flex-direction: row;
    width: 90%;
    max-width: 800px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    background: #fff;
}

/* Left Panel */
.left-panel {
    flex: 1;
    background: #6595d0;
    color: #fff;
    text-align: center;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.left-panel .logo {
    width: 80px;
    margin-bottom: 15px;
}

.left-panel h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.left-panel h5 {
    font-size: 1rem;
    margin-bottom: 20px;
}

.left-panel a {
    margin-top: auto;
    color: #fff;
    text-decoration: underline;
}

/* Right Panel */
.right-panel {
    flex: 1;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
}

/* Login Box */
.login-box {
    width: 100%;
    max-width: 300px;
    text-align: center;
}

/* Avatar */
.avatar {
    width: 50px;
    height: 50px;
    background: #6595d0;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 24px;
    margin: 0 auto 20px;
}

/* Input Group */
.input-group {
    position: relative;
    margin-bottom: 25px;
}

.input-group input {
    width: 100%;
    padding: 12px;
    padding-right: 40px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.input-group i {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
    cursor: pointer;
}

/* Login Button */
button {
    width: 100%;
    padding: 12px;
    background: #6595d0;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background: #557dbd;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .login-container {
        flex-direction: column;
        width: 95%;
        max-width: 400px;
    }

    .left-panel {
        width: 100%;
        padding: 20px;
    }

    .left-panel .logo {
        width: 60px;
    }

    .right-panel {
        width: 100%;
        padding: 20px;
    }

    .login-box {
        max-width: 100%;
    }
}
