﻿/* TPS.AuthorizationServer/wwwroot/css/auth-pages.css */

body {
    font-family: 'Segoe UI', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: white;
}

.backdrop {
    background-color: white;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.ms-Button {
    width: 100%;
    margin-top: 15px;
    height: 45px;
    font-size: 18px;
}

form {
    margin: 20px 0;
}

.title {
    font-size: 28px;
    font-weight: 600;
    color: #0078d4;
    margin-bottom: 20px;
}

input[type="submit"] {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    margin-bottom: 15px;
    box-sizing: border-box;
    height: 45px;
    background-color: #0078d4;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

    input[type="submit"]:hover {
        background-color: #005a9e;
    }

    input[type="submit"].deny-access {
        background-color: #e81123;
    }

        input[type="submit"].deny-access:hover {
            background-color: #c41019;
        }

.consent-description {
    margin-bottom: 25px;
    font-size: 16px;
}

.ms-TextField, .ms-TextField-field {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

label {
    display: block;
    text-align: left;
    margin-bottom: 5px;
    font-weight: 500;
}
