﻿body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f4f4;
    /*background-image: url('../../Images/bg.png');*/
    background-size: cover;
    margin: 0;
}

.login-form {
    max-width: 400px;
    margin: 100px auto;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.control-label {
    font-weight: bold;
    display: block;
    text-shadow: 1px 1px 1px #ccc;
}

/* Username field styling */
.username-input {
    position: relative;
}

.username-input input {
    width: 100%;
    padding: 12px;
    box-sizing: border-box;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 16px;
}

/* Password field styling */
.password-input {
    position: relative;
}

.password-input input {
    width: 100%;
    padding: 12px;
    box-sizing: border-box;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 16px;
}

.password-input .show-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #777;
}

.password-input input[type="password"] {
    padding-right: 40px;
}

.btn-primary {
    background-color: #337ab7;
    color: #fff;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    border-radius: 3px;
    font-weight: bold;
}

.btn-primary:hover {
    background-color: #286090;
    text-decoration: none;
}

.user-type-input {
    margin-bottom: 15px;
}

.user-type-input label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.user-type-input select {
    width: 100%;
    padding: 8px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.user-type-input .text-danger {
    margin-top: 5px;
}