/* main.css */


* {
    transition: all 0.3s ease;
}

body, html {
    font-family: 'Segoe UI', sans-serif;
}
body{
    height: 100dvh;
    width: 100dvw;
    position: absolute;
    display: grid;
    align-content: center;
}

/* components.css */


.btn {
    padding: 10px 16px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    display: inline-block;
}
.btn-primary {
    background-color: #007bff;
    color: white;
}
.btn-primary:hover {
    background-color: #0056b3;
}

.input {
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
    width: 100%;
    font-size: 16px;
}

.status-message {
    padding: 12px 16px;
    margin: 15px auto;
    max-width: 500px;
    border-radius: 6px;
    font-size: 15px;
    text-align: center;
    font-weight: bold;
}

.status-success {
    background: #e6f4ea;
    color: #237a3a;
    border: 2px solid #30b34b;
}
.status-error {
    background: #fcebea;
    color: #a71d2a;
    border: 2px solid #e53935;
}


/* forms.css */


.form-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 30px auto;
    width: 100%;
    padding: 0 8px;
}

.form-title {
    text-align: center;
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 20px;
}
