/* public/css/auth.css */
:root {
    --primary-color: #132d46;
    --secondary-color: #42fea7;
    --accent-color: #3498db;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --text-color: #333;
    --text-light: #fff;
    --text-size: 14px;
    --pill-success: #cdfee8;
    --pill-success-text: #12b367;
}

body {
    font-family: "Poppins" !important;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    padding: 0;
    color: var(--text-color);
}

.login-container {
    background-image: url('/images/auth-background.svg');
    /* background: linear-gradient(to bottom right, #42ec89, #39f7cb); */
    /* background-size: cover;
    background-position: center; */
    background-repeat: no-repeat;
    min-height: 100vh;
}


.auth-logo {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
}

input::placeholder {
    font-size: 12px;
}

.auth-btn {
    background-color: var(--secondary-color)!important;
    
}
