﻿*{
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Manrope', Arial, sans-serif;
}
.container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.login-form {
    width: 350px; 
    margin: 100px auto;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: -3px 4px 20px 5px rgb(0 0 0 / 34%);
}

    .login-form h4 {
        text-align: center;
        margin-bottom: 20px;
    }

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 14px;
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
}

.btn-outline-success {
    background-color: transparent;
    color: #28a745; 
    border: 2px solid #28a745;
}

    .btn-outline-success:hover {
        background-color: #28a745; 
        color: white;
    }

.btn-outline-secondary {
    background-color: transparent;
    color: #6c757d;
    border: 2px solid #6c757d;
}

    .btn-outline-secondary:hover {
        background-color: #6c757d; 
        color: white;
    }

.form-group {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
@media (max-width: 768px) {
    body {
        width: 768px;
    }
}
