﻿body {
    background-color:  #1e3a8a;
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
}

.login-main {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.login-page {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
    margin:4%;
}

.logo-container {
    text-align: center;
    margin-bottom: 20px;
}

.login-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    box-shadow: 0px 12px 9px 3px #888888;
}

.login-title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.input-container {
    margin-bottom: 15px;
}

    .input-container label {
        display: block;
        margin-bottom: 5px;
        color: #333;
    }

.input-field {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
    box-sizing: border-box;
}

    .input-field:focus {
        border-color: #007bff;
        outline: none;
        box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
    }

.add-action-container {
    margin-top: 20px;
}

    .add-action-container button {
        width: 100%;
        padding: 12px;
        background-color: #007bff;
        color: #fff;
        border: none;
        font-size: 16px;
        border-radius: 8px;
        cursor: pointer;
        transition: background-color 0.3s;
    }

        .add-action-container button:hover {
            background-color: #0056b3;
        }

.error-message {
    color: red;
    text-align: center;
    margin-top: 10px;
}

.signup-text {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
}
