﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;

}

.login-box {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    max-width: 400px;
    margin-top: 50px;
}

.logo {
    font-size: 48px;
    font-weight: bold;
    color: #333;
}

.login-h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
    margin-top: -30px;
}

.input-group {
    margin-bottom: 20px;
}

    .input-group input {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 4px !important;
        font-size: 16px;
    }

.register-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(to right, #6c63ff, #8b63ff);
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .register-btn:hover {
        background-color: #5a52e2;
    }

.msg {
    display: none;
    text-align: left;
    margin-top: -20px;
    margin-bottom: 10px;
}



#customTitle {
    width: 100px;
    height: 25px;
    margin-left: 5px;
}

#titleSelect {
    margin-left: 5px;
}

#psw-not-matched {
    margin-top: -20px;
    text-align:left;
}

@media (max-width: 860px) {
    .login-box {
        margin-top:120px;
    }
}