﻿@import url(../font/prompt/style.css);

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Prompt', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1a1a1a;
}

.login-container {
    max-width: 380px;
    width: 100%;
    padding: 30px;
}

login-form {
    z-index: 1;
}

.curved-border {
    position: relative;
    width: 450px;
    height: 350px;
    background: transparent;
    z-index: 0;
}

    .curved-border::before {
        content: "";
        position: absolute;
        top: -10%;
        left: -25%;
        width: 130%;
        height: 150%;
        border: 2px solid #000;
        border-radius: 25% 50% 40% 40% / 40% 50% 40% 30%;
        transform: rotate(-10deg);
        z-index: -1;
    }

.login-header {
    text-align: center;
    margin-bottom: 48px;
}

    .login-header h1 {
        font-size: 24px;
        font-weight: 600;
        color: #1a1a1a;
        margin-bottom: 8px;
    }

    .login-header p {
        font-size: 14px;
        font-weight: 400;
        color: #666;
    }

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    height: 44px;
    padding: 0 14px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 400;
    color: #1a1a1a;
    background: #ffffff;
    transition: border-color 0.15s ease;
}

    .form-control:focus {
        outline: none;
        border-color: #1a1a1a;
    }

    .form-control::placeholder {
        color: #999;
    }

.btn-login {
    width: 100%;
    height: 44px;
    background: #1a1a1a;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.15s ease;
}

    .btn-login:hover {
        background: #333;
    }

    .btn-login:active {
        background: #000;
    }

.login-alert {
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 13px;
    margin-bottom: 24px;
    background: #fff5f5;
    border: 1px solid #ffebeb;
    color: #c41e3a;
}

    .login-alert ul {
        margin-bottom: 0;
    }

.text-danger {
    font-size: 12px;
    color: #c41e3a;
    margin-top: 4px;
    display: block;
}

.login-footer {
    text-align: center;
    margin-top: 48px;
    font-size: 12px;
    color: #999;
}
