        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100vh;
            background-color: #fff;
        }
        .container {
            width: 300px;
            text-align: center;
        }
        .header {
            display: flex;
            align-items: center;
            gap: 10px;
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 18px;
            font-weight: bold;
        }
	.back-link {
            display: flex;
            align-items: center;
        }
        .back-link>.icon{
            margin-right: 5px;
            position: relative;
            top: -2px;
        }
        .input-wrapper {
            position: relative;
            margin: 10px 0;
        }
        .input-wrapper label {
            position: absolute;
            top: 0;
            font-size: 12px;
            font-weight: 700;
            color: #666;
        }
        .input-field {
            width: calc(100% - 20px);
            padding: 20px 10px 10px 10px;
            border: none;
            border-bottom: 1px solid #ccc;
            font-size: 14px;
            outline: none;
        }
        .submit-btn {
            width: 100%;
            padding: 10px;
            background-color: #0056b3;
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            cursor: pointer;
            margin-top: 20px;
        }
        .submit-btn:hover {
            background-color: #004494;
        }
        .options {
            display: flex;
            justify-content: space-between;
            font-size: 12px;
        }
        .options a {
            text-decoration: none;
            color: inherit;
            margin-left:5px;
        }
        .signup {
            margin-top: 10px;
            font-size: 12px;
        }
        .signup a {
            color: #0056b3;
            text-decoration: none;
        }
	.btn {
            padding: 10px;
            background-color: inherit;
            color: inherit;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            cursor: pointer;
            display:block;
            margin-top:5px;
	}
	a.btn{
            background-color: #b30a00;
            color:white; 
	}
        a.btn:hover{
            background-color: #940000;
        }
        
        .message {
            margin-top: 10px;
            font-size: 14px;
            color: red;
        }

