* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #F0F2F5; 
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.wrapper {
    width: 100%;
    max-width: 400px;
    padding: 15px;
}

.container {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-top: 5px solid #C92127; 
}

.brand-title {
    font-size: 26px;
    font-weight: 800;
    color: #C92127;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.container h2 {
    font-size: 16px;
    color: #555555;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
}

.user, .pass {
    margin-bottom: 20px;
}

.container label {
    display: block;
    font-size: 13px;
    color: #444;
    font-weight: 600;
    margin-bottom: 6px;
}

.text {
    width: 100%;
    padding: 11px 14px;
    font-size: 14px;
    border: 1px solid #DDD;
    border-radius: 4px;
    outline: none;
    transition: all 0.2s ease;
}

.text:focus {
    border-color: #C92127;
    box-shadow: 0 0 0 3px rgba(201, 33, 39, 0.1);
}

.Remember {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.Remember input[type="checkbox"] {
    width: 15px;
    height: 15px;
    cursor: pointer;
    accent-color: #C92127; 
}

.Remember label {
    display: inline-block;
    margin-bottom: 0;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    font-size: 13px;
}

.button {
    margin-top: 20px;
    margin-bottom: 20px;
}

.button input[type="submit"] {
    width: 100%;
    background-color: #C92127;
    color: white;
    border: none;
    padding: 12px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.button input[type="submit"]:hover {
    background-color: #A7171C;
}

.textf {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-top: 10px;
}

.textf a {
    color: #C92127;
    text-decoration: none;
    font-weight: 600;
}

.textf a:hover {
    text-decoration: underline;
}